@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");





:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f3efee;
  --text: #36333a;
  --muted: #7b767d;
  --line: #e7dfe0;
  --gold: #b68945;
  --green: #23433c;
  --green-2: #294b43;
  --tab: #e0d3b4;
}



* { box-sizing: border-box; }



html { scroll-behavior: auto; }


body {
  font-size: 16px; 
  margin: 0;
  font-family: "Noto Serif JP", serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }



.container {
  width: min(1800px, calc(100% - 40px));
  margin: 0 auto;
}




.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#173026;
  backdrop-filter:blur(8px);
  border-bottom:1px solid #c6a75e;
}

.header-inner{
  height:82px;
  display:flex;
  align-items:center;
  gap:16px;
}


.brand-logo{
  width:70px;
  height:70px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  margin-top:-1px;
}

.brand{
  display:flex;
  align-items:center;
  margin-right:18px;
  flex:0 0 auto;
}


.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex:1 1 auto;
  min-width:0;
  margin-left:24px;
  padding-right:32px;
  flex-wrap:nowrap;
}

.nav-link{
  position:relative;
  font-weight:400;
  color:#ffffff;
  font-size:16px;
  white-space:nowrap;
}

.nav-link{
  position:relative;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:3px;
  background:#f5c400;
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}
.nav-link.is-active::after{
  opacity:1;
}


.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
}

.icon-btn{
  position:relative;
  border:0;
  background:transparent;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  color:#ffffff;
  cursor:pointer;
}

.icon-btn svg{
  width:22px;
  height:22px;
}

.badge{
  position:absolute;
  top:2px;
  right:0;
  width:18px;
  height:18px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:11px;
  display:grid;
  place-items:center;
}

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:10px;
}

.menu-toggle span{
  display:block;
  height:2px;
  margin:6px 10px;
  background:#fff;
  border-radius:2px;
}


.nav-dropdown{
  position:relative;
  padding-bottom:14px;
  margin-bottom:-14px;
}

.nav-btn{
  border:0;
  background:transparent;
  cursor:pointer;
  padding:0;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

.chev{
  
  transition:transform .25s ease;
}

.nav-dropdown.is-open .chev{
  transform:rotate(180deg);
}

@media (hover: hover) and (pointer: fine){
  .nav-dropdown:hover .chev{
    transform:rotate(180deg);
  }
}

.dropdown-panel{
  position:absolute;
  top:calc(60% + 8px);
  left:-8px;
  min-width:275px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:12px;
  display:none;
  z-index:100;
}

.dropdown-panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}

.nav-dropdown.is-open .dropdown-panel{
  display:block;
}

@media (hover: hover) and (pointer: fine){
  .nav-dropdown:hover .dropdown-panel{
    display:block;
  }
}

.dropdown-panel a{
  display:block;
  padding:13px 16px;
  border-radius:12px;
  color:#333;
  font-size:16px;
}

.dropdown-panel a:hover{
  background:rgba(198,167,94,.12);
  color:var(--green);
}



.header-actions .badge{
  position:absolute;
  top:2px;
  right:0;
  width:18px;
  height:18px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:11px;
  display:grid;
  place-items:center;
}


.nav-dropdown.is-open .chev{
  transform:rotate(180deg);
}


.nav-dropdown.is-open .dropdown-panel{
  display:block;
}
.page-wrap { padding: 22px 0 42px; }
.page {
  padding-top: 34px;
}

h1 {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.cart-table {
  border: 1px solid #ddd6ca;
  border-radius: 8px;
  overflow: hidden;
}

.cart-items-container {
  max-height: 460px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

.cart-items-container::-webkit-scrollbar {
  width: 10px;
}

.cart-items-container::-webkit-scrollbar-track {
  background: #f4f0ea;
}

.cart-items-container::-webkit-scrollbar-thumb {
  background: #23433c;
  border-radius: 999px;
  border: 2px solid #f4f0ea;
}

.cart-items-container {
  scrollbar-width: thin;
  scrollbar-color: #23433c #f4f0ea;
}


.table-head,
.cart-item {
  display: grid;
  grid-template-columns: 1.8fr 0.55fr 0.72fr 0.6fr 0.55fr;
  align-items: center;
  column-gap: 18px;
}


.cart-item > *,
.product-cell,
.product-cell > div,
.qty-wrap,
.action-cell,
.price,
.subtotal {
  min-width: 0;
}

.table-head {
  background: #f0ece5;
  min-height: 57px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 21px;
}

.cart-item {
  min-height: 138px;
  padding: 0 22px;
  border-top: 1px solid #e7e2da;
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}


.product-cell > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.product-cell img {
  width: 110px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-cell h3 {
  margin: 0;
  padding-right: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 400;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.product-cell > div {
  padding-right: 8px;
}

.product-cell p {
  margin: 0;
  color: #8f867f;
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-cell p span {
  font-size: 15px;
}

.price,
.subtotal {
  font-family: "Noto Serif JP", serif;
  font-size: 27px;
  font-weight: 700;
  white-space: nowrap;
}


.price,
.subtotal,
.qty-wrap,
.action-cell {
  justify-self: start;
  display: flex;
  align-items: center;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 36px 48px 36px;
  justify-self: start;
  border: 1px solid #23433c;
  border-radius: 6px;
  overflow: hidden;
  height: 36px;
}

.qty-control span,
.qty-btn {
  display: grid;
  place-items: center;
  border: 0;
  font-size: 16px;
  line-height: 1;
}

.qty-control span {
  background: #ffffff;
  color: #2e1f26;
  border-left: 1px solid #23433c;
  border-right: 1px solid #23433c;
}

.qty-btn {
  background: #23433c;
  color: #ffffff;
}


.action-cell {
  justify-self: start;
  display: flex;
  align-items: center;
}

.delete-btn {
  border: 1px solid #c62828;
  background: #c62828;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.delete-btn:hover {
  background: #a91f1f;
  border-color: #a91f1f;
  color: #ffffff;
}

.qty-btn {
  cursor: pointer;
}

.empty-cart-message {
  padding: 28px 22px;
  text-align: center;
  font-size: 18px;
  color: #8f867f;
}

.cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 30px;
}

.continue-btn {
  border: 0;
  background: var(--green);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px 13px;
  border-radius: 4px;
  min-width: 245px;
}

.top-subtotal {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  transform: translateX(-305px);
}

.top-subtotal strong {
  font-weight: 700;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.93fr;
  gap: 30px;
  align-items: start;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-title-wrap h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.section-line {
  width: 100%;
  height: 1px;
  background: #d8d1c7;
  transform: translateY(3px);
}

.upload-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.upload-card {
  min-height: 250px;
  border: 1px solid #e2dcd1;
  border-radius: 10px;
  background: #fbfaf7;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-img {
  width: 130px;
  margin-bottom: 10px;
}
.upload-card.upload-box {
  position: relative;
}
.upload-card.upload-box::before {
  content: 'Obligatorio';
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff3f0;
  color: #a53d2f;
  border: 1px solid #f0c4bb;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.upload-card p {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
}

.upload-icon {
  width: 68px;
  margin-bottom: 18px;
}

.upload-icon svg {
  width: 100%;
  height: 100%;
  stroke: #c0b19a;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upload-btn {
  margin-top: 18px;
  border: 1px solid #d4c8b8;
  background: #f5f1eb;
  color: #2b241d;
  border-radius: 7px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
}


.payment-proof-input {
  display: none;
}

.upload-status {
  margin-top: 12px !important;
  font-size: 16px !important;
  color: #6c6358;
  text-align: center;
  word-break: break-word;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.upload-btn:hover {
  background: #ece4d8;
  border-color: #c3b29a;
}

.upload-btn:focus-visible {
  outline: 3px solid rgba(198, 167, 94, 0.35);
  outline-offset: 2px;
}

.order-card {
  border: 1px solid #e2dcd1;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}

.order-head {
  background: #f0ece5;
  padding: 18px 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 29px;
  font-weight: 600;
}

.order-body {
  padding: 16px 16px 18px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 18px;
}

.row strong,
.row.total {
  font-weight: 700;
}

.row .normal {
  font-weight: 600;
}

.row.total {
  font-family: "Noto Serif JP", serif;
  font-size: 27px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.muted {
  color: #a79e94;
}

.divider {
  height: 1px;
  background: #dfd7cc;
  margin: 4px 10px 2px;
}

.discount-box {
  display: grid;
  grid-template-columns: 1fr 108px;
  margin: 6px 0 16px;
}

.discount-box input {
  height: 42px;
  border: 1px solid #dad4ca;
  border-right: 0;
  padding: 0 14px;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
}

.discount-box button {
  border: 0;
  background: var(--green);
  color: #fff;
  border-radius: 0 6px 6px 0;
  font-size: 16px;
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #1b5a43 0%, #0f3e2f 100%);
  color: white;
  padding: 13px 16px;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
}


.customer-form {
  margin: 12px 10px 18px;
  padding: 16px;
  border: 1px solid #e2dcd1;
  border-radius: 10px;
  background: #faf7f3;
}

.customer-form-title {
  margin-bottom: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  color: #2c302d;
}

.customer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 16px;
  font-weight: 600;
  color: #5a5149;
}

.customer-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8cec1;
  border-radius: 8px;
  background: #fff;
  padding: 11px 14px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-input::placeholder {
  color: #9b9289;
}

.customer-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 137, 69, 0.14);
}

.customer-input.input-error {
  border-color: #c55a42;
  box-shadow: 0 0 0 3px rgba(197, 90, 66, 0.12);
}

.checkout-status {
  min-height: 20px;
  margin: 12px 0 0 !important;
  font-size: 16px !important;
  color: #6c6358;
  text-align: left;
}

.checkout-status.is-error {
  color: #a53d2f;
}

.checkout-status.is-success {
  color: #1f6b51;
}




.site-footer{
  margin-top:26px;
  border-top:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg, #fbf9f9 0%, #f5f2f2 100%);
}

.footer-top{
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.footer-subscribe-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  min-height:72px;
  flex-wrap:nowrap;
}

.footer-label{
  font-size:16px;
  font-weight:600;
  color:#1f1f1f;
  white-space:nowrap;
}

.newsletter-form{
  width:520px;
  flex:0 0 auto;
  max-width:100%;
  margin-left:1px;
  display:flex;
  align-items:center;
  background:#f8f5f5;
  border:1px solid #ddd7d7;
  border-radius:4px;
  overflow:hidden;
  padding:0;
  min-height:54px;
}

.newsletter-form input{
  flex:1;
  border:0;
  outline:none;
  width:100%;
  background:transparent;
  padding:0 18px;
  font-size:16px;
  color:#333;
}

.newsletter-form input::placeholder{
  color:#9b9494;
}

.send{
  flex:0 0 auto;
  width:58px;
  height:54px;
  border:0;
  border-left:1px solid rgba(0,0,0,.08);
  border-radius:0;
  background:var(--green);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.send:hover{
  background:var(--green-dark);
}

.send svg{
  width:20px;
  height:20px;
}

.footer-divider{
  width:1px;
  height:40px;
  border-left:2px dotted #d0d0d0;
}

.follow-inline{
  display:flex;
  align-items:center;
  gap:14px;
}

.social{
  display:flex;
  align-items:center;
  gap:14px;
}

.social-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#2d2a2a;
  border:0;
  background:transparent;
  transition:transform .18s ease, opacity .18s ease;
}

.social-btn img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.social-btn:hover{
  background:transparent;
  color:#173026;
  transform:translateY(-3px);
}

.footer-bottom{
  padding:14px 0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.legal{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.legal a{
  color:#222;
  font-size:14px;
  text-decoration:none;
}

.legal a:hover{
  color:var(--green);
}

.payments img{
  height:50px;
  width:auto;
  opacity:.95;
}
















.item-category {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-items-container .empty-cart-message {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
}



.order-confirmation-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 10000;
}

.order-confirmation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.order-confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(5px);
}

.order-confirmation-dialog {
  position: relative;
  width: min(100%, 500px);
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 24px 22px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(201, 169, 97, 0.18);
  text-align: center;
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}

.order-confirmation-modal.is-open .order-confirmation-dialog {
  transform: translateY(0) scale(1);
}

.order-confirmation-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f8f5ee;
  color: #7a5c17;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.order-confirmation-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 166, 90, 0.14);
  border: 2px solid rgba(34, 166, 90, 0.28);
  color: #1f9d55;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(34, 166, 90, 0.12);
}

.order-confirmation-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 137, 31, 0.12);
  color: #8a6512;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.order-confirmation-dialog h3 {
  margin: 12px 0 8px;
  font-size: 26px;
  line-height: 1.15;
}

.order-confirmation-description,
.order-confirmation-note {
  margin: 0;
  color: #5b6472;
  line-height: 1.6;
}

.order-confirmation-summary {
  margin: 18px 0 14px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  border: 1px solid rgba(201, 169, 97, 0.22);
  text-align: left;
}

.summary-row,
.order-confirmation-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  flex-wrap: wrap;
}

.summary-row:last-child,
.order-confirmation-row:last-child {
  border-bottom: 0;
}

.summary-row span,
.order-confirmation-row span {
  color: #6b7280;
  font-size: 13px;
}

.summary-row strong,
.order-confirmation-row strong {
  color: #111827;
  font-size: 14px;
  text-align: left;
}

.order-confirmation-button {
  margin-top: 18px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  background: linear-gradient(135deg, #c7a04a 0%, #a77b1f 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(167, 123, 31, 0.24);
}

body.order-modal-open {
  overflow: hidden;
}










h1 {
  font-size: 30px !important;
}

.section-title-wrap h2,
.customer-form-title,
.top-subtotal {
  font-size: 20px !important;
}

.legal a {
  font-size: 14px !important;
}

.table-head,
.product-cell h3,
.product-cell p,
.product-cell p span,
.price,
.subtotal,
.qty-control span,
.qty-btn,
.delete-btn,
.empty-cart-message,
.continue-btn,
.upload-card p,
.upload-btn,
.upload-status,
.order-head,
.row,
.row.total,
.discount-box input,
.discount-box button,
.checkout-btn,
.form-field label,
.customer-input,
.customer-input::placeholder,
.checkout-status {
  font-size: 16px !important;
}



.header-actions{
  position:relative;
}

.header-search{
  position:relative;
  right:auto;
  top:auto;
  transform:none;
  width:clamp(260px, 24vw, 360px);
  min-width:220px;
  z-index:8;
  overflow:visible;
  flex:0 0 clamp(260px, 24vw, 360px);
}
.header-search::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}
.search-input-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  width:100%;
  margin-left:auto;
  transition:none;
}
.header-search.is-open .search-input-wrap{
  width:100%;
}
.search-input{
  width:100%;
  height:38px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#ffffff;
  padding:0 40px 0 18px;
  font-size:16px;
  line-height:1.2;
  outline:none;
  opacity:1;
  pointer-events:auto;
  visibility:visible;
  transition:background .18s ease, border-color .18s ease;
}
.header-search.is-open .search-input{
  opacity:1;
  pointer-events:auto;
  visibility:visible;
}
.search-input::placeholder{ color:rgba(255,255,255,.72); font-size:16px; }
.search-input:focus{
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.1);
}
.search-submit{
  position:absolute;
  right:4px;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#ffffff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.search-submit svg{ width:16px; height:16px; }
.search-results{
  position:absolute;
  top:calc(100% + 4px);
  right:0;
  width:100%;
  max-height:278px;
  overflow-y:auto;
  overflow-x:hidden;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.1);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  padding:6px;
  display:none;
  z-index:200;
}
.search-results.is-visible{ display:block; }
.search-result{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-radius:12px;
  color:#1f1f1f;
}
.search-result:hover,
.search-result.is-active{ background:rgba(198,167,94,.14); }
.search-result img{
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:10px;
  background:#f2f2f2;
  flex:0 0 48px;
}
.search-result-info{ min-width:0; width:100%; overflow:hidden; }
.search-result-title{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
  word-break:break-word;
  overflow-wrap:anywhere;
  font-size:13px;
  font-weight:600;
  line-height:1.25;
}
.search-result-meta{
  margin-top:4px;
  color:#666;
  font-size:11px;
}
.search-result-extra{
  display:block;
  margin-top:3px;
  color:#3b3b3b;
  font-size:11px;
  font-weight:600;
  line-height:1.35;
}
.search-empty{
  padding:12px 10px;
  color:#666;
  font-size:13px;
}









.whatsapp-btn-png{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: "Noto Serif JP", serif;
}
.whatsapp-btn-png img{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(0,0,0,.28);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-text{
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #2b2b2b;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    width: 240px;
    max-width: 240px;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
}
.whatsapp-text.hide{
    opacity: 0;
    visibility: hidden;
}
@keyframes whatsappPulse{
0%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,.32);}
70%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 0 16px rgba(37,211,102,0);}
100%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.28),0 0 0 0 rgba(37,211,102,0);}
}
























.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
  color:#ffffff;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:0;
  background:#ffffff !important;
  border-radius:999px;
  opacity:1;
}








































